notebook.community
Edit and run
In [6]: print('I run this is a code cell with SHIFT+ENTER')
print('I run this is a code cell with SHIFT+ENTER')
I run this is a code cell with SHIFT+ENTER
Fortran
program teste implicit none real :: a = 10.0 print *, a end program teste
Python ```python3
x = 10 print(" X vale %d " % x)
```
Isto.
In [4]: 1 + 2
1 + 2
Out[4]: 3
3